Get Response
AutomatR.GoogleForms.Activities.GetResponse
The "Get Response" activity in AutomatR is part of the Google Forms activities package, allowing users to retrieve details about a specific response within a Google Form. This activity uses the Google Forms API to access response data associated with a particular form.
Properties
Name | Description |
---|---|
Input | |
Form ID | The unique identifier of the form for which the response details are to be retrieved. String variables containing the Form ID. This field is required. |
Response ID | The unique identifier of the response within the specified form. String variables containing the Response ID. This field is required. |
Misc | |
Display Name | Provides a customizable name for the activity displayed in the workflow. The display name enhances clarity and organization within the automation project. String variables containing the desired display name. |
Optional | |
Delay | Specifies the amount of time (in seconds) to wait before starting the activity. Useful for handling synchronization issues. Integer variables containing the delay duration. Example: If the amount of time is 1000 milliseconds or 1 sec, i.e., 1. |
Output | |
Result | Returns the response as Form Details in a FormResponse object format. Variables of type FormResponse to store the response details. |
How to use:
- Drag and drop the "Get Response" activity onto the workflow.
- Configure the properties by specifying the Form ID and Response ID for which details are to be retrieved.
- Optionally, configure the delay before starting the activity.
- Execute the workflow to obtain details about the specified response within the Google Form.
Example:
Consider an example where the "Get Response" activity is used to retrieve details about a response in a Google Form with the Form ID "formId" and Response ID "responseId":
Get Response:
Form ID: "formId"
Response ID: "responseId"
Delay: 2
Result: formResponseDetails
In this example, the activity retrieves details about the specified response within the Google Form with the Form ID "formId" and Response ID "responseId." The response is stored in the variable "formResponseDetails" for further handling in the workflow.